home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / mqupdate / proteus.mbt < prev    next >
Text File  |  1989-12-26  |  1KB  |  26 lines

  1. ;=============================================================================
  2. ; This example illustrates how to upload all of the presets
  3. ; from a Proteus
  4. ;
  5. ; (c) Copyright 1989 by DMA Software
  6. ; All rights reserved
  7. ;=============================================================================
  8. ;
  9. ; Upload all (64) factory presets from Proteus
  10. ;
  11. flushbuffer                             ;prepare to receive data
  12. sysex 0x18 0x04 0x00 0x00 0x7E 0x7F 0xF7 ;request factory presets
  13. timeout 5                               ;timeout if no data in 5 seconds
  14. receivefile e:factory.pxr 64            ;save all presets in file
  15.                                         ;note that this statement specifies
  16.                                         ;64 sysex units to be saved
  17. ;
  18. ; Upload all (64) user presets from Proteus
  19. ;
  20. flushbuffer                             ;prepare to receive data
  21. sysex 0x18 0x04 0x00 0x00 0x7F 0x7F 0xF7 ;request user presets
  22. timeout 5
  23. receivefile e:user.pxr 64               ;timeout if no data in 5 seconds
  24.                                         ;note that this statement specifies
  25.                                         ;64 sysex units to be saved
  26.